home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 June / PCWorld_2007-06_cd.bin / temacd / wikipad / WikidPad-1.9beta2.exe / {app} / WikidPadHelp / data / WhereIsTheDataStored.wiki < prev    next >
Encoding:
Text File  |  2006-11-23  |  1.4 KB  |  42 lines

  1. ∩╗┐++ Where Is The Data Stored
  2.  
  3.  
  4. This depends on the used database type:
  5.  
  6. +++ Original Gadfly
  7. The data for your wiki is stored in plain text under the data
  8. directory of the directory your Wiki config is stored in. There is
  9. one file per wiki word. The .grl and .gdf files are the database
  10. files used to index your wiki words efficiently.
  11.  
  12. This type is slow but portable across different platforms because it
  13. doesn't need any external binaries.
  14.  
  15.  
  16.  
  17. +++ Compact Sqlite (aka WikidPadCompact)
  18. The data is stored in a single file named "wiki.sli" under the data
  19. directory of the directory your Wiki config is stored in. This
  20. database file is created by the Sqlite database engine and contains
  21. the content of all wiki pages as well as the cache information for
  22. fast handling of your wiki.
  23.  
  24. Advantages of this type are its speed and efficient usage of hard disk
  25. space. On the other hand single pages can't be edited with a text
  26. editor or searched by a desktop search engine (like Google Desktop).
  27.  
  28.  
  29.  
  30. +++ Original Sqlite
  31. The data for your wiki is stored in plain text under the data
  32. directory of the directory your Wiki config is stored in. There is one
  33. file per wiki word. The database to index the wiki is stored in the
  34. file "wikiovw.sli".
  35.  
  36. This type provides one file per page (as "Original Gadfly") which can
  37. be edited or searched by external programs and is nearly as fast as
  38. "Compact Sqlite".
  39.  
  40.  
  41. [icon: question]
  42.